CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - k NN algorithm nearest neighbor

搜索资源列表

  1. c++实现的KNN库:建立高维度的K-d tree

    0下载:
  2. c++实现的KNN库:建立高维度的K-d tree,实现K邻域搜索,最小半径搜索-K-NN algorithm implementation. It supports data structures and algorithms for both exact and approximate nearest neighbor searching in arbitrarily high dimensions.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2017-03-22
    • 文件大小:624713
    • 提供者:duckur
  1. Yong

    0下载:
  2. Image thresholding has played an important role in image segmentation. In this paper, we present a novel spatially weighted fuzzy c-means (SWFCM) clustering algorithm for image thresholding. The algorithm is formulated by incorporating the spatial ne
  3. 所属分类:Special Effects

    • 发布日期:2017-03-28
    • 文件大小:294242
    • 提供者:silviudog
  1. TESTBR

    0下载:
  2. k NN algorithm nearest neighbor search
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:754
    • 提供者:Namrata
  1. Kode-Program-Algoritma-Nearest-Neighbor

    0下载:
  2. In pattern recognition, the k-nearest neighbor algorithm (k-NN) is a method for classifying objects based on closest training examples in the feature space. k-NN is a type of instance-based learning, or lazy learning where the function is only approx
  3. 所属分类:Algorithm

    • 发布日期:2017-03-23
    • 文件大小:589343
    • 提供者:bwindhya
  1. knn_classify

    0下载:
  2. knn分类算法 遥感图象分类 knn分类算法 遥感图象分类 -knn classify k-nearest neighbor algorithm In pattern recognition, the k-nearest neighbor algorithm (k-NN) is a method for classifying objects based on closest training examples in the feature space
  3. 所属分类:Special Effects

    • 发布日期:2017-03-27
    • 文件大小:1002
    • 提供者:lee
  1. K-NN

    0下载:
  2. Delphi realization of k-nearest neighbor algorithm.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-01
    • 文件大小:192043
    • 提供者:Jane
  1. knn_vb

    0下载:
  2. In pattern recognition, the k-nearest neighbor algorithm (k-NN) is a method for classifying objects based on closest training examples in the feature space. k-NN is a type of instance-based learning, or lazy learning where the function is only approx
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-04
    • 文件大小:52633
    • 提供者:Putra
  1. knn

    0下载:
  2. In pattern recognition, the k-nearest neighbor algorithm (k-NN) is a method for classifying objects based on closest training examples in the feature space.
  3. 所属分类:Multimedia program

    • 发布日期:2017-04-14
    • 文件大小:3053
    • 提供者:kumar
  1. cvEucdist

    0下载:
  2. In pattern recognition, the k-nearest neighbor algorithm (k-NN) is a method for classifying objects based on closest training examples in the feature space. k-NN is a type of instance-based learning, or lazy learning where the function is only approx
  3. 所属分类:Other Embeded program

    • 发布日期:2017-11-20
    • 文件大小:902
    • 提供者:aa
  1. QCKNN

    0下载:
  2. 基于MD-CKNN算法的连续K近邻查询系统,与传统的Find-NN算法进行性能对比-MD-CKNN algorithm-based continuous K-nearest neighbor query system, its performance is compared with traditional Find-NN algorithm
  3. 所属分类:GPS develop

    • 发布日期:2017-12-07
    • 文件大小:991395
    • 提供者:songhu
  1. nn

    0下载:
  2. 最近邻算法实现 k近邻 Z为训练集,每行一个样本,n*m labZ为与Z对应的类别,列向量 Z_T为测试集,每行一个样本,p*m labZ_T为输出结果,p*1-Nearest-neighbor algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:564
    • 提供者:裴唯一
  1. SerialKNN

    0下载:
  2. KNN-是K最邻近结点算法(k-Nearest Neighbor algorithm)的缩写形式,是电子信息分类器算法的一种。KNN方法对包容型数据的特征变量筛选尤其有效。-In pattern recognition, the k-nearest neighbors algorithm (k-NN) is a non-parametric method for classification and regression, that predicts objects "values"
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:18326
    • 提供者:chelin
  1. KNN

    0下载:
  2. K-NN k-Nearest Neighbor classification algorithm-K-NN k-Nearest Neighbor classification algorithm
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:895
    • 提供者:soufiane
  1. knn所涉及

    0下载:
  2. KNN是通过测量不同特征值之间的距离进行分类。它的的思路是:如果一个样本在特征空间中的k个最相似(即特征空间中最邻近)的样本中的大多数属于某一个类别,则该样本也属于这个类别。K通常是不大于20的整数。KNN算法中,所选择的邻居都是已经正确分类的对象。该方法在定类决策上只依据最邻近的一个或者几个样本的类别来决定待分样本所属的类别。(NN is classified by measuring the distance between the different eigenvalues. It is
  3. 所属分类:matlab例程

    • 发布日期:2017-12-22
    • 文件大小:26624
    • 提供者:haibelief
  1. k-nn

    0下载:
  2. k-nn算法 K-NN算法 ( K Nearest Neighbor, K近邻算法 ), 是机器学习中的一个经典算法, 比较简单且容易理解. K-NN算法通过计算新数据与训练数据特征值之间的距离, 然后选取 K (K>=1) 个距离最近的邻居进行分类或者回归. 如果K = 1 , 那么新数据将被分配给其近邻的类.(k-nnK - NN algorithm (K on his Neighbor, K Nearest Neighbor algorithm), is a classical al
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:1024
    • 提供者:smilephil
搜珍网 www.dssz.com